home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1997 May & June / Amiga-CD 1997 #5-6.iso / grafik / wildfire / wildfirenofpu / installieren_auf_hd < prev    next >
Text File  |  1997-03-07  |  1KB  |  54 lines

  1. IF EXISTS fonts:XEN.font
  2. ELSE
  3. copy fonts/#? fonts: all >NIL:
  4. ENDIF   
  5.  
  6. IF EXISTS Libs:xpkmaster.library
  7.    requestchoice "xpkmaster.library" "Soll Ihre alte Library*nersetzt werden?" "Ja|Nein" >env:test
  8.    IF $test EQ 1
  9.       copy libs/xpkmaster.library libs:
  10.    ENDIF
  11. ELSE
  12. copy libs/xpkmaster.library libs:
  13. ENDIF   
  14.  
  15. IF EXISTS Libs:compressors/xpkFAST.library
  16.    requestchoice "xpkFAST.library" "Soll Ihre alte Library*nersetzt werden?" "Ja|Nein" >env:test
  17.    IF $test EQ 1
  18.       copy libs/compressors/xpkFAST.library libs:compressors/
  19.    ENDIF
  20. ELSE
  21. makedir libs:compressors >nil:
  22. copy libs/compressors/xpkFAST.library libs:compressors/
  23. ENDIF   
  24.  
  25. IF EXISTS envarc:Wildfire.config
  26.    requestchoice "Wildfire.config" "Soll Ihre alte Konfiguration*ndurch die Standard-Konfig ersetzt werden?" "Ja|Nein" >env:test
  27.    IF $test EQ 1
  28.       copy envarc/WildFire.config envarc:
  29.    ENDIF
  30. ELSE
  31. copy envarc/WildFire.config envarc:
  32. ENDIF   
  33.  
  34. cd >env:test1
  35. Requestfile Drawersonly Title "Wo soll die Dir erstellt werden?" >env:test
  36. if warn
  37.    quit
  38. endif
  39. cd $test
  40. copy "$test1#?" "" all
  41. cd "wildfire#?"
  42. cd >env:test
  43.  
  44. assign wf: ""
  45. path "" add
  46.  
  47. requestchoice "User Startup" "Soll das Wildfire Assign in die User-Startup*neingefügt werden?" "Ja|Nein" >env:test1
  48. IF $test1 EQ 1
  49.   echo ";Wildfire Assign" >>s:user-startup
  50.   echo "Assign wf: "$test >>s:user-startup
  51.   echo "path wf: "$test "add" >>s:user-startup
  52.   echo ";Wildfire Assign Ende" >>s:user-startup
  53. ENDIF
  54.